-
-
Notifications
You must be signed in to change notification settings - Fork 18
Update procfs requirement from 0.17.0 to 0.18.0 #166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updates the requirements on [procfs](https://github.com/eminence/procfs) to permit the latest version. - [Release notes](https://github.com/eminence/procfs/releases) - [Commits](eminence/procfs@v0.17.0...v0.18.0) --- updated-dependencies: - dependency-name: procfs dependency-version: 0.18.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Owner
|
@dependabot merge
…On Tue, Sep 2, 2025 at 2:46 PM dependabot[bot] ***@***.***> wrote:
Updates the requirements on procfs <https://github.com/eminence/procfs>
to permit the latest version.
Release notes
*Sourced from procfs's releases
<https://github.com/eminence/procfs/releases>.*
v0.18.0 What's Changed
- Enable generate-link-to-definition rustdoc feature on docs.rs by
@GuillaumeGomez <https://github.com/GuillaumeGomez> in
eminence/procfs#320
<https://redirect.github.com/eminence/procfs/pull/320>
- Use correct MSRV by @tyilo <https://github.com/tyilo> in
eminence/procfs#328
<https://redirect.github.com/eminence/procfs/pull/328>
- replace hardcoded crate name by env var that returns the crate's
name dynamically by @PauloMigAlmeida
<https://github.com/PauloMigAlmeida> in eminence/procfs#327
<https://redirect.github.com/eminence/procfs/pull/327>
- Remove unused crate and use by @javierhonduco
<https://github.com/javierhonduco> in eminence/procfs#329
<https://redirect.github.com/eminence/procfs/pull/329>
- Fix lints as the names have changed by @javierhonduco
<https://github.com/javierhonduco> in eminence/procfs#330
<https://redirect.github.com/eminence/procfs/pull/330>
- Reduce short-lived allocations in memory maps parsing by
@javierhonduco <https://github.com/javierhonduco> in
eminence/procfs#331
<https://redirect.github.com/eminence/procfs/pull/331>
- Work around 32/64 bit mismatch by @musicinmybrain
<https://github.com/musicinmybrain> in eminence/procfs#326
<https://redirect.github.com/eminence/procfs/pull/326>
- Parse /proc/pid/status "Groups" field as u32 by @Jongy
<https://github.com/Jongy> in eminence/procfs#334
<https://redirect.github.com/eminence/procfs/pull/334>
- Make get_pressure and parse_pressure_record public by @SebastiaanYN
<https://github.com/SebastiaanYN> in eminence/procfs#335
<https://redirect.github.com/eminence/procfs/pull/335>
- Use AsRef for user-facing path parameters by @Jongy
<https://github.com/Jongy> in eminence/procfs#336
<https://redirect.github.com/eminence/procfs/pull/336>
- Check process name in test_proc_status_for_kthreadd by @NoisyCoil
<https://github.com/NoisyCoil> in eminence/procfs#337
<https://redirect.github.com/eminence/procfs/pull/337>
- Add full record to CpuPressure by @SebastiaanYN
<https://github.com/SebastiaanYN> in eminence/procfs#338
<https://redirect.github.com/eminence/procfs/pull/338>
- chore(deps): update rustix to 1.0.1 by @cratelyn
<https://github.com/cratelyn> in eminence/procfs#340
<https://redirect.github.com/eminence/procfs/pull/340>
- Derive PartialEq & Eq for FDTarget by @Jongy
<https://github.com/Jongy> in eminence/procfs#339
<https://redirect.github.com/eminence/procfs/pull/339>
- Fix README.md example compilation by @rantala
<https://github.com/rantala> in eminence/procfs#342
<https://redirect.github.com/eminence/procfs/pull/342>
- Fix for trait derivation on wasm targets by @fzylogic
<https://github.com/fzylogic> in eminence/procfs#345
<https://redirect.github.com/eminence/procfs/pull/345>
- Add Process.open_relative_flags by @Jongy <https://github.com/Jongy>
in eminence/procfs#341
<https://redirect.github.com/eminence/procfs/pull/341>
- fix wrong spelling in nfs mount by @arthur-zhang
<https://github.com/arthur-zhang> in eminence/procfs#347
<https://redirect.github.com/eminence/procfs/pull/347>
- Add track_caller to check_unwrap test helper function by @eminence
<https://github.com/eminence> in eminence/procfs#355
<https://redirect.github.com/eminence/procfs/pull/355>
- Add /proc/pid/syscall parsing support by @jebradbury39
<https://github.com/jebradbury39> in eminence/procfs#350
<https://redirect.github.com/eminence/procfs/pull/350>
- Fix FDTarget parsing for unknown FD types by @eminence
<https://github.com/eminence> in eminence/procfs#356
<https://redirect.github.com/eminence/procfs/pull/356>
- Fix parsing for mountinfo and related fields when presented with
empty fields by @eminence <https://github.com/eminence> in
eminence/procfs#357
<https://redirect.github.com/eminence/procfs/pull/357>
- Replace crate with $crate in our macro definitions by @eminence
<https://github.com/eminence> in eminence/procfs#358
<https://redirect.github.com/eminence/procfs/pull/358>
New Contributors
- @GuillaumeGomez <https://github.com/GuillaumeGomez> made their
first contribution in eminence/procfs#320
<https://redirect.github.com/eminence/procfs/pull/320>
- @tyilo <https://github.com/tyilo> made their first contribution in
eminence/procfs#328
<https://redirect.github.com/eminence/procfs/pull/328>
- @PauloMigAlmeida <https://github.com/PauloMigAlmeida> made their
first contribution in eminence/procfs#327
<https://redirect.github.com/eminence/procfs/pull/327>
- @javierhonduco <https://github.com/javierhonduco> made their first
contribution in eminence/procfs#329
<https://redirect.github.com/eminence/procfs/pull/329>
- @musicinmybrain <https://github.com/musicinmybrain> made their
first contribution in eminence/procfs#326
<https://redirect.github.com/eminence/procfs/pull/326>
- @Jongy <https://github.com/Jongy> made their first contribution in
eminence/procfs#334
<https://redirect.github.com/eminence/procfs/pull/334>
- @SebastiaanYN <https://github.com/SebastiaanYN> made their first
contribution in eminence/procfs#335
<https://redirect.github.com/eminence/procfs/pull/335>
- @NoisyCoil <https://github.com/NoisyCoil> made their first
contribution in eminence/procfs#337
<https://redirect.github.com/eminence/procfs/pull/337>
- @cratelyn <https://github.com/cratelyn> made their first
contribution in eminence/procfs#340
<https://redirect.github.com/eminence/procfs/pull/340>
- @rantala <https://github.com/rantala> made their first contribution
in eminence/procfs#342
<https://redirect.github.com/eminence/procfs/pull/342>
- @fzylogic <https://github.com/fzylogic> made their first
contribution in eminence/procfs#345
<https://redirect.github.com/eminence/procfs/pull/345>
- @arthur-zhang <https://github.com/arthur-zhang> made their first
contribution in eminence/procfs#347
<https://redirect.github.com/eminence/procfs/pull/347>
- @jebradbury39 <https://github.com/jebradbury39> made their first
contribution in eminence/procfs#350
<https://redirect.github.com/eminence/procfs/pull/350>
*Full Changelog*: ***@***.***
<eminence/procfs@v0.17.0...v0.18.0>
Commits
- 7d3a0cd
<eminence/procfs@7d3a0cd>
Bump version to v0.18.0
- 78d6a16
<eminence/procfs@78d6a16>
Merge pull request #358
<https://redirect.github.com/eminence/procfs/issues/358> from
eminence/macro_rules_crate
- 44f4289
<eminence/procfs@44f4289>
Replace crate with $crate in our macro definitions
- 432e8c2
<eminence/procfs@432e8c2>
Merge pull request #357
<https://redirect.github.com/eminence/procfs/issues/357> from
eminence/fix_pasta_mountinfo
- bffec12
<eminence/procfs@bffec12>
Fix parsing for mountinfo and related fields when presented with empty
fields
- d618111
<eminence/procfs@d618111>
Merge pull request #356
<https://redirect.github.com/eminence/procfs/issues/356> from
eminence/fdtarget_fix
- 4a7b270
<eminence/procfs@4a7b270>
Fix FDTarget parsing for unknown FD types
- 5faa3c4
<eminence/procfs@5faa3c4>
Merge pull request #350
<https://redirect.github.com/eminence/procfs/issues/350> from
jebradbury39/add_syscall_parsing
- 5547a6a
<eminence/procfs@5547a6a>
Merge pull request #355
<https://redirect.github.com/eminence/procfs/issues/355> from
eminence/add-track-caller-to-test-helper
- eddfadb
<eminence/procfs@eddfadb>
remove comment
- Additional commits viewable in compare view
<eminence/procfs@v0.17.0...v0.18.0>
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting @dependabot
rebase.
------------------------------
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- @dependabot rebase will rebase this PR
- @dependabot recreate will recreate this PR, overwriting any edits
that have been made to it
- @dependabot merge will merge this PR after your CI passes on it
- @dependabot squash and merge will squash and merge this PR after
your CI passes on it
- @dependabot cancel merge will cancel a previously requested merge
and block automerging
- @dependabot reopen will reopen this PR if it is closed
- @dependabot close will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- @dependabot show <dependency name> ignore conditions will show all
of the ignore conditions of the specified dependency
- @dependabot ignore this major version will close this PR and stop
Dependabot creating any more for this major version (unless you reopen the
PR or upgrade to it yourself)
- @dependabot ignore this minor version will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen the
PR or upgrade to it yourself)
- @dependabot ignore this dependency will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the PR
or upgrade to it yourself)
------------------------------
You can view, comment on, or merge this pull request online at:
#166
Commit Summary
- cd2efa5
<cd2efa5>
Update procfs requirement from 0.17.0 to 0.18.0
File Changes
(1 file
<https://github.com/andrewdavidmackenzie/libproc-rs/pull/166/files>)
- *M* Cargo.toml
<https://github.com/andrewdavidmackenzie/libproc-rs/pull/166/files#diff-2e9d962a08321605940b5a657135052fbcef87b5e360662bb527c96d9a615542>
(2)
Patch Links:
- https://github.com/andrewdavidmackenzie/libproc-rs/pull/166.patch
- https://github.com/andrewdavidmackenzie/libproc-rs/pull/166.diff
—
Reply to this email directly, view it on GitHub
<#166>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABKF4LGJ7VK7KX7M5FDPCU33QWGSRAVCNFSM6AAAAACFNFHP3WVHI2DSMVQWIX3LMV43ASLTON2WKOZTGM3TKOBYG42TQNY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updates the requirements on procfs to permit the latest version.
Release notes
Sourced from procfs's releases.
Commits
7d3a0cdBump version to v0.18.078d6a16Merge pull request #358 from eminence/macro_rules_crate44f4289Replacecratewith$cratein our macro definitions432e8c2Merge pull request #357 from eminence/fix_pasta_mountinfobffec12Fix parsing for mountinfo and related fields when presented with empty fieldsd618111Merge pull request #356 from eminence/fdtarget_fix4a7b270Fix FDTarget parsing for unknown FD types5faa3c4Merge pull request #350 from jebradbury39/add_syscall_parsing5547a6aMerge pull request #355 from eminence/add-track-caller-to-test-helpereddfadbremove commentDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)